home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / drdtips.zip / 1110.TXT < prev    next >
Text File  |  1991-12-31  |  4KB  |  124 lines

  1. Document 1110
  2. BEGINNERS TIPS
  3.  
  4. BPT
  5.  
  6. Description:
  7.  
  8. Q-    I'm just beginning to explore computers & DOS and want to
  9. know what I should look at first?
  10.  
  11. A-    The most important concept to grasp is that of PATHS. The
  12. next item is skill with commands such as TREE, XDIR, etc. And
  13. perhaps the most fun is in the creation of BATCH files. Then the
  14. real exploration can begin.
  15.  
  16.  
  17. PATH:
  18.  
  19. The back of the "Users Guide" has an excellent index that will
  20. help you find explanations of these primary path commands:
  21.  
  22.     TREE
  23.     CHDIR
  24.     MDIR
  25.     CD \
  26.     CD ..
  27.     PATH
  28.  
  29. It's important to remember that going into a path is much like
  30. driving a car up a cul-de-sac to find someone's house with a map.
  31.  
  32.     - You start out on a main boulevard that you know (c:\) 
  33.     - take various turns onto side streets (cd \drdos) 
  34.     - and finally find the name your searching for
  35.           (c:\drdos\tree.exe)
  36.         - To get back home, you must backup and retrace your steps
  37.           (cd..) or you may know of a shortcut (cd \)
  38.  
  39. COMMANDS:
  40.  
  41. The DR DOS command set is quite a long listing but the first
  42. ones to get familiar with are:
  43.  
  44.     TREE
  45.     DIR
  46.     REN
  47.     COPY
  48.     DEL
  49.     UNDEL
  50.  
  51. Some of them, like DEL are quite destructive so exercise
  52. caution. There are quite often "switches" that will customize
  53. the command that may suit your purpose better, these can be
  54. found by typing the command and a /h after it, for instance:
  55.  
  56.     TREE /H
  57.  
  58. Or you can browse through DOSBOOK, just type:
  59.  
  60.     DOSBOOK
  61.  
  62. BATCH FILES:
  63.  
  64. You could say that the machine (PC) is bi-lingual, there are two
  65. types of files it reads:
  66.  
  67. 1.    "Executables" that can only be read by the machine , (they
  68. just look like gobblety gook to us).
  69.  
  70. 2.    "Text" files that do make some sense! I say some sense
  71. because they often contain instructions for our machine.
  72.  
  73. Most of these files are critical to the happy operation of your
  74. PC and should not be changed, but it is certainly ok to go and
  75. look at them.
  76.  
  77. Some of the files that are "Text" based are:
  78.  
  79. 1.    AUTOEXEC.BAT
  80. 2.    CONFIG.SYS
  81. 3.    *.INI
  82.  
  83. A safe way to look at them is to use the command "TYPE". Refer
  84. to *** below.
  85.  
  86. Example:
  87. TYPE AUTOEXEC.BAT /P
  88.  
  89. There are things listed in your DR DOS "Users Guide" that will
  90. show you what can be done or ways to simplify loading programs,
  91. all it takes is making a "Batch" file (text file) or editing an
  92. existing file.  Look in the back of the guide under the words:
  93.  
  94. BATCH
  95. CONFIGURATION
  96. AUTOEXEC.BAT
  97. CONFIG.SYS
  98. PROMPT
  99.  
  100. There are examples given in the guide that will get you started
  101. on your exploration of DOS and the PC.  Best of success to you.
  102.  
  103. ***To do a DOS command like "TYPE", you must know how to get to
  104. the command line first. If a machine has been setup by a
  105. consultant or store, they sometimes put you in a menu program
  106. which gives a list of choices, or straight into an application
  107. like a data base.  Often, these programs or applications offer a
  108. way to get to the COMMAND LINE, or as it's sometimes called, the
  109. DOS PROMPT.  Typing EXIT will usually return to you to normal,
  110. but if it doesn't rebooting the machine will start everything
  111. all over again.  There is an important rule regarding rebooting,
  112. "NEVER REBOOT IF YOU ARE IN THE MIDDLE OF A PROGRAM" you should
  113. always exit to the DOS PROMPT or use the "QUIT" option that is
  114. usually available from a programs option list.
  115.  
  116.  
  117. Example:
  118.  
  119. Page  35 to  44  Paths/Directories
  120. Page 145 to 352  Commands
  121. Page 113 to 136  Batch commands
  122. Page 356 to 397  Config.sys
  123. Page 294  Prompt
  124.